翻訳と辞書
Words near each other
・ Edgemont, South Dakota
・ Edgemoor and Manetta Railway
・ Edgemoor Farm Dairy Barn
・ Edgemoor Gardens, Delaware
・ Edgemoor Terrace, Delaware
・ Edgemoor, Delaware
・ Edge of Thorns
・ Edge of Tomorrow (film)
・ Edge of Twilight
・ Edge of Twilight (series)
・ Edge of Twilight (video game)
・ Edge of Winter
・ Edge Peak
・ Edge pull
・ Edge Radio
Edge recombination operator
・ Edge Rocks
・ Edge routing
・ Edge School
・ Edge Side Includes
・ Edge sorting
・ Edge space
・ EDGE species
・ Edge Springs
・ Edge STP
・ Edge Studio
・ EDGE Tech
・ Edge Technologies
・ Edge Therapeutics
・ Edge TV


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Edge recombination operator : ウィキペディア英語版
Edge recombination operator

The edge recombination operator (ERO) is an operator that creates a path that is similar to a set of existing paths (parents) by looking at the edges rather than the vertices. The main application of this is for crossover in genetic algorithms when a genotype with non-repeating gene sequences is needed such as for the travelling salesman problem. It was described by Darrell Whitley and others in 1989.
==Algorithm==

ERO is based on an adjacency matrix, which lists the neighbors of each node in any parent.
For example, in a travelling salesman problem such as the one depicted, the node map for the parents CABDEF and ABCEFD (see illustration) is generated by taking the first parent, say, 'ABCEFD' and recording its immediate neighbors, including those that roll around the end of the string.
Therefore;
... -> () <-> () <-> () <-> () <-> () <-> () <- ...
...is converted into the following adjacency matrix by taking each node in turn, and listing its connected neighbors;
A: B D
B: A C
C: B E
D: F A
E: C F
F: E D
With the same operation performed on the second parent (CABDEF), the following is produced:
A: C B
B: A D
C: F A
D: B E
E: D F
F: E C
Followed by making a union of these two lists, and ignoring any duplicates. This is as simple as taking the elements of each list and appending them to generate a list of unique link end points. In our example, generating this;
A: B C D = ∪
B: A C D = ∪
C: A B E F = ∪
D: A B E F = ∪
E: C D F = ∪
F: C D E = ∪
The result is another adjacency matrix, which stores the links for a network described by all the links in the parents. Note that more than two parents can be employed here to give more diverse links. However, this approach may result in sub-optimal paths.
Then, to create a path K, the following algorithm is employed:〔Darrell Whitley, Timothy Starkweather and Daniel Shaner: ''The Travelling Salesman and Sequence Scheduling: Quality Solutions using Genetic Edge Recombination'' in L. Davis (ed.): ''Handbook of Genetic Algorithms''. Van Nostrand Reinhold, New York 1991〕
Let K be the empty list
Let N be the first node of a random parent.

While Length(K) < Length(Parent):
K := K, N (append N to K)
Remove N from all neighbor lists

If N's neighbor list is non-empty
then let N
* be the neighbor of N with the fewest neighbors in its list (or a random one, should there be multiple)
else let N
* be a randomly chosen node that is not in K

N := N
*
To step through the example, we randomly select a node from the parent starting points, .
* () -> A. We remove A from all the neighbor sets, and find that the smallest of B, C and D is B=.
* AB. The smallest sets of C and D are C= and D=. We randomly select D.
* ABD. Smallest are E=, F=. We pick F.
* ABDF. C=, E=. We pick C.
* ABDFC. The smallest set is E={}.
* ABDFCE. The length of the child is now the same as the parent, so we are done.
Note that the only edge introduced in ABDFCE is AE.

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Edge recombination operator」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.